home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / ideas / r.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  3KB  |  122 lines

  1. /*
  2.  * Copyright 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #include <gl.h>
  18.  
  19.  
  20.  
  21. float r_data[][2] = {
  22.     {0.018462, 12.344969-3.0},
  23.     {0.775385, 12.677618-3.0},
  24.     {0.812308, 12.344969-3.0},
  25.     {1.421538, 12.899384-3.0},
  26.     {1.126154, 12.123203-3.0},
  27.     {1.864615, 12.825462-3.0},
  28.     {1.181538, 11.716633-3.0},
  29.     {2.030769, 12.603696-3.0},
  30.     {1.089231, 10.700206-3.0},
  31.     {1.495385, 9.351130-3.0},
  32.     {0.516923, 7.355236-3.0},
  33.     {0.756923, 6.375770-3.0},
  34.     {0.129231, 5.119096-3.0},
  35.     {0.461538, 5.322382-3.0},
  36.  
  37.     {1.680000, 10.663244-3.0},
  38.     {1.550769, 9.942505-3.0},
  39.     {2.160000, 11.383984-3.0},
  40.     {2.400000, 11.531828-3.0},
  41.     {2.640000, 12.086243-3.0},
  42.     {2.916923, 12.086243-3.0},
  43.     {3.341538, 12.806981-3.0},
  44.     {3.526154, 12.160164-3.0},
  45.     {4.043077, 12.954825-3.0},
  46.     {4.209231, 12.308008-3.0},
  47.     {4.504615, 12.880903-3.0},
  48.     {4.541538, 12.622176-3.0},
  49.  
  50. };
  51.  
  52. draw_r() {
  53.  
  54.     bgntmesh();
  55.     v2f(r_data[0]);
  56.     v2f(r_data[1]);
  57.     v2f(r_data[2]);
  58.     v2f(r_data[3]);
  59.     v2f(r_data[4]);
  60.     v2f(r_data[5]);
  61.     v2f(r_data[6]);
  62.     v2f(r_data[7]);
  63.     v2f(r_data[8]);
  64.     v2f(r_data[9]);
  65.     v2f(r_data[10]);
  66.     v2f(r_data[11]);
  67.     v2f(r_data[12]);
  68.     v2f(r_data[13]);
  69.     endtmesh();
  70.  
  71.     bgntmesh();
  72.     v2f(r_data[14]);
  73.     v2f(r_data[15]);
  74.     v2f(r_data[16]);
  75.     v2f(r_data[17]);
  76.     v2f(r_data[18]);
  77.     v2f(r_data[19]);
  78.     v2f(r_data[20]);
  79.     v2f(r_data[21]);
  80.     v2f(r_data[22]);
  81.     v2f(r_data[23]);
  82.     v2f(r_data[24]);
  83.     v2f(r_data[25]);
  84.     endtmesh();
  85.  
  86.     bgnline();
  87.     v2f(r_data[0]);
  88.     v2f(r_data[2]);
  89.     v2f(r_data[4]);
  90.     v2f(r_data[6]);
  91.     v2f(r_data[8]);
  92.     v2f(r_data[10]);
  93.     v2f(r_data[12]);
  94.     v2f(r_data[13]);
  95.     v2f(r_data[11]);
  96.     v2f(r_data[9]);
  97.     v2f(r_data[7]);
  98.     v2f(r_data[5]);
  99.     v2f(r_data[3]);
  100.     v2f(r_data[1]);
  101.     v2f(r_data[0]);
  102.     endline();
  103.  
  104.     bgnline();
  105.     v2f(r_data[14]);
  106.     v2f(r_data[16]);
  107.     v2f(r_data[18]);
  108.     v2f(r_data[20]);
  109.     v2f(r_data[22]);
  110.     v2f(r_data[24]);
  111.     v2f(r_data[25]);
  112.     v2f(r_data[23]);
  113.     v2f(r_data[21]);
  114.     v2f(r_data[19]);
  115.     v2f(r_data[17]);
  116.     v2f(r_data[15]);
  117.     v2f(r_data[14]);
  118.     endline();
  119.  
  120. }
  121.  
  122.